home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxPolyhedronUV.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  1.3 KB  |  44 lines

  1. //******************************************************************************
  2. //    File: ItsxPolyhedronUV.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxPolyhedronUV COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXPOLYHEDRONUV_H
  9. #define ITSXPOLYHEDRONUV_H
  10.  
  11.  
  12. #include "itsxcommon.h"
  13.  
  14.  
  15. #undef INTERFACE
  16. #define INTERFACE ItsxPolyhedronUV
  17.  
  18. DECLARE_INTERFACE_(ItsxPolyhedronUV, IUnknown)
  19. {
  20.     // IUnknown members
  21.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  22.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  23.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  24.  
  25.     // ItsxPolyhedronUV members
  26.     STDMETHOD_(ULONG, GetCount) (THIS) PURE;
  27.     STDMETHOD(SetCount) (THIS_ ULONG) PURE;
  28.     STDMETHOD(SetFirst) (THIS) PURE;
  29.     STDMETHOD(SetNext) (THIS) PURE;
  30.     STDMETHOD(Create) (THIS) PURE;
  31.     STDMETHOD(Destroy) (THIS) PURE;
  32.     STDMETHOD(GetPosition) (THIS_ tsxUV*) PURE;
  33.     STDMETHOD(SetPosition) (THIS_ tsxUV*) PURE;
  34. };
  35.  
  36. // typedef a pointer to this interface
  37. typedef ItsxPolyhedronUV* PITSXPOLYHEDRONUV;
  38.  
  39. // define a GUID for this interface
  40. // {5FCC5500-6299-11d1-A256-006097D15F58}
  41. DEFINE_GUID(IID_ItsxPolyhedronUV, 0x5fcc5500, 0x6299, 0x11d1, 0xa2, 0x56, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  42.  
  43.  
  44. #endif // ITSXPOLYHEDRONUV_H